home *** CD-ROM | disk | FTP | other *** search
/ Aminet 33 / Aminet 33 - October 1999.iso / Aminet / dev / cross / ava-0.2.5.lha / ava-0.2.5 / examples / rangetst.s < prev    next >
Encoding:
Text File  |  1999-03-23  |  343 b   |  18 lines

  1. /*
  2.   rangetst.s
  3.  
  4.   Flash Memory Range Test
  5.   Compile with -T option.
  6.  
  7.   This example fills all the FLASH memory of the AT90S8515.
  8.   4095*2 are filled with zeros plus two bytes for rjmp instruction.
  9. */
  10.  
  11. #define SIZE    4095/* remarks can be placed immediatelly after asm*/
  12. #define LSL(x)    (x<<1)
  13.  
  14.     seg flash.code
  15.  
  16. start:    ds.b    LSL(SIZE)
  17.     rjmp    start
  18.